home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 23
/
Amiga Format AFCD23 (Feb 1998, Issue 107).iso
/
-seriously_amiga-
/
shareware
/
programming
/
other
/
studio16add
/
scripts
/
convertstudio2aiff
< prev
next >
Wrap
AmigaDOS Script File
|
1997-12-01
|
768b
|
31 lines
.key PATTERN/A,DESTDIR/A
.bra {
.ket }
; This script can convert many Studio 16 files to AIFF files based
; on pattern matching.
;
; $VER: ConvertStudio2AIFF 1.0 (11.11.97)
; By Kenneth "Kenny" Nilsen (kenny@bgnett.no)
;
; USAGE: ConvertStudio2AIFF <pattern> <destdir/>
;
; NOTE: The commands must be in the command search path. To be safe
; copy the commands in C: or add the path where you keep the commands to
; the global search path (startup-sequence: path <path> ADD).
;-- convert files
list {pattern} files lformat="echo *"Processing file '%N'...*"*nStudio2AIFF %P%N {DESTDIR}%N.aiff" >t:tmp.16
echo "Converting Studio 16 file(s) to AIFF.. please wait!"
execute t:tmp.16
if WARN
echo "Error occured while converting files!"
endif
echo "Done"
lab Final